home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / mathstud.zip / FLIP.M < prev    next >
Text File  |  1993-03-23  |  216b  |  10 lines

  1. function y = flip(x)
  2. % y=flip(x)
  3. % reverse the order of the argument columns AND rows
  4. % y = fliplr(flipud(x));
  5.  
  6. %       S.Halevy 7/31/92
  7. %       Copyright (c) 1992 by the MathWizards
  8.  
  9. y = fliplr(flipud(x));
  10.